FIA, FIB, FID, FII, FIS, FIT, FIU, FIW
(Fill Memory)
Syntax
FI{ A | B | D | I | S
| T | U | W} range pattern
Parameters
range
The memory
area to fill. See Range Syntax
pattern
One or more
values to fill memory with. Separate multiple numeric values with spaces.
Description
Fills the
memory area specified by range with the user-specified pattern.
The entire range will be filled by repeatedly storing pattern
into memory.
When entering
numeric values, you can use C-style radix prefixes to override the default
radix. Prefix octal constants with a 0o (for example 0o1776), hexadecimal constants with 0x (for example
0xF000), and decimal constants with 0t (for example 0t199).
When entering
ANSI or Unicode values, you can include space (" ") characters
by enclosing the character string in quotation marks (" or ').
If you enclose the string in double quotation marks, WinDbg will automatically
null-terminate the string. Single quotation marks (') will not add a
null character. Standard C escape characters (such as \t, \007,
and \") are also allowed.
Command |
Definition |
Fill |
|
FIA |
Fill ANSI |
ANSI
(extended ASCII) characters |
|
FIB |
Fill Bytes
(char) |
Byte values |
|
FID |
Fill
Doublewords (long) |
Doubleword
(4-byte) values |
|
FII |
Fill 8-Byte
Reals (double) |
Floating-point
numbers |
|
FIS |
Fill 4-Byte
Reals (float) |
Floating-point
numbers |
|
FIT |
Fill
10-Byte Reals (long double) |
Floating-point
numbers |
|
FIU |
Fill
Unicode |
Unicode
characters |
|
FIW |
Fill Words
(short) |
Word values |
|